1 /*
2  * Katie James
3  *
2048
4  * CSIS
304 JavaScript Project
5 */
6
7 /* full page styling */

8 body {
9     background-color: #faf8ef;
10     color: #
776E65;
11     font-family: Arial, Helvetica, sans-serif;
12     padding-top:
2%;
13 }

14
15 /* header container */

16 .container {
17     width: 450px;
18     margin-left: auto;
19     margin-right: auto;
20 }

21
22 /*
2048 title */
23 h1#title {
24     font-size: 80px;
25     font-weight: bold;
26     margin:
0;
27     display: block;
28     
float: left;
29 }

30
31 /* score container and score title */

32 div#score-container {
33     position: relative;
34     
float: right;
35     background-color: #
776E65;
36     color: rgb(
205, 192, 180);
37     height: 25px;
38     padding: 15px 20px;
39     padding-bottom: 30px;
40     margin-top: 10px;
41     text-align: center;
42 }

43
44 /* numeric score */

45 div#score {
46     font-weight: bold;
47     font-size: 25px;
48     color: white;
49 }

50
51 /* instructions subheader */

52 p#instructions {
53     position: relative;
54     
float: left;
55 }

56
57 /* bolded
2048 in instructions */
58 span {
59     font-weight: bold;
60 }


Gõ tìm kiếm nhanh...